home *** CD-ROM | disk | FTP | other *** search
/ Czech Logic, Card & Gambling Games / Logické hry.iso / hry / Fish Fillets / script / share / bubles.lua < prev    next >
Encoding:
Text File  |  2005-07-16  |  540 b   |  18 lines

  1.  
  2. function stdBublesLoad()
  3.     sound_addSound("bubles", "sound/share/sp-bubles_00.ogg")
  4.     sound_addSound("bubles", "sound/share/sp-bubles_01.ogg")
  5.     sound_addSound("bubles", "sound/share/sp-bubles_02.ogg")
  6.     sound_addSound("bubles", "sound/share/sp-bubles_03.ogg")
  7.     sound_addSound("bubles", "sound/share/sp-bubles_04.ogg")
  8.     sound_addSound("bubles", "sound/share/sp-bubles_05.ogg")
  9. end
  10.  
  11. function stdBubles()
  12.     --NOTE: original was (random(100) < 5)
  13.     if random(100) < 2 then
  14.         sound_playSound("bubles", 15)
  15.     end
  16. end
  17.  
  18.